Nevron Open Vision Documentation
Nevron.Nov.DataStructures Namespace / NEqualsToFilter<T> Class
Members


In This Topic
    NEqualsToFilter<T> Class
    In This Topic
    A filter that returns true if the item is equal to another item. The equality is checked with the Compare method.
    Object Model
    NEqualsToFilter<T> Class
    Syntax
    'Declaration
     
    
    Public NotInheritable Class NEqualsToFilter(Of T As System.IComparable(Of T)) 
       Inherits NComparisonFilter(Of T)
       Implements INFilter(Of T) 
    'Usage
     
    
    Dim instance As NEqualsToFilter(Of T)
    public sealed class NEqualsToFilter<T> : NComparisonFilter<T>, INFilter<T>  
    where T: System.IComparable<T>
    Type Parameters
    T
    Remarks
    The NEqualsToFilter is fundamentally different from the NObjectEqualsFilter, because the latter is uses the build in each .NET object Equals method, and actually uses another method to check for equality.
    Inheritance Hierarchy

    System.Object
       Nevron.Nov.DataStructures.NComparisonFilter<T>
          Nevron.Nov.DataStructures.NEqualsToFilter<T>

    Requirements

    Target Platforms: Windows 11, Windows 10, Windows 7, Windows Server 2019, Windows Server 2016, Windows Server 2012 R2, Windows Server 2012, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later)

    See Also